From: Roger Pau Monne Date: Thu, 31 Mar 2016 12:56:41 +0000 (+0200) Subject: libxl: add support for disk hotplug scripts on FreeBSD X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~1362 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=94e975d34b34ca55541aa095e2e2fa02590dac95;p=xen.git libxl: add support for disk hotplug scripts on FreeBSD Allow FreeBSD to execute hotplug scripts when attaching disk devices. Signed-off-by: Roger Pau Monné --- diff --git a/tools/libxl/libxl_freebsd.c b/tools/libxl/libxl_freebsd.c index 54db3d5c99..e86e28c8b4 100644 --- a/tools/libxl/libxl_freebsd.c +++ b/tools/libxl/libxl_freebsd.c @@ -111,6 +111,35 @@ out: return rc; } +static int libxl__hotplug_disk(libxl__gc *gc, libxl__device *dev, + char ***args, char ***env, + libxl__device_action action) +{ + char *be_path = libxl__device_backend_path(gc, dev); + char *script; + int nr = 0, rc; + + script = libxl__xs_read(gc, XBT_NULL, + GCSPRINTF("%s/%s", be_path, "script")); + if (!script) { + LOGEV(ERROR, errno, "unable to read script from %s", be_path); + rc = ERROR_FAIL; + goto out; + } + + const int arraysize = 4; + GCNEW_ARRAY(*args, arraysize); + (*args)[nr++] = script; + (*args)[nr++] = be_path; + (*args)[nr++] = (char *) libxl__device_action_to_string(action); + (*args)[nr++] = NULL; + assert(nr == arraysize); + rc = 1; + +out: + return rc; +} + int libxl__get_hotplug_script_info(libxl__gc *gc, libxl__device *dev, char ***args, char ***env, libxl__device_action action, @@ -131,6 +160,13 @@ int libxl__get_hotplug_script_info(libxl__gc *gc, libxl__device *dev, } rc = libxl__hotplug_nic(gc, dev, args, env, action, num_exec); break; + case LIBXL__DEVICE_KIND_VBD: + if (num_exec != 0) { + rc = 0; + goto out; + } + rc = libxl__hotplug_disk(gc, dev, args, env, action); + break; default: /* No need to execute any hotplug scripts */ rc = 0;